ExtInt
 
Component ExtInt
External interrupt
Component Level: High
Typical Usage:
(Examples of a typical usage of the component in user code. For more information please see the page Component Code Typical Usage.)

Required component name is "EInt1".

(1)
One of the easiest typical usage of this component is a counter of external occurrences implemented in the event.

 EVENTS.C

unsigned int event_cntr=0;
void EInt1_OnInterrupt(void)
{
  ++event_cntr;   /* increment event counter */
}